/* Slider Container */
#image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Background Holder for the Slider */
.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
}

.slider-background.active {
    opacity: 1;
}

/* Ensure other content on the page is not affected by opacity */
.page1Heading, h2, h3, .grid-item, .grid-item-View {
    position: relative;
    z-index: 2;
}
